home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / xsubpp < prev    next >
Text File  |  2006-04-25  |  51KB  |  1,899 lines

  1. #!/usr/bin/perl
  2.     eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
  3.     if $running_under_some_shell;
  4. #!/usr/bin/perl
  5.  
  6. =head1 NAME
  7.  
  8. xsubpp - compiler to convert Perl XS code into C code
  9.  
  10. =head1 SYNOPSIS
  11.  
  12. B<xsubpp> [B<-v>] [B<-C++>] [B<-except>] [B<-s pattern>] [B<-prototypes>] [B<-noversioncheck>] [B<-nolinenumbers>] [B<-nooptimize>] [B<-typemap typemap>] ... file.xs
  13.  
  14. =head1 DESCRIPTION
  15.  
  16. This compiler is typically run by the makefiles created by L<ExtUtils::MakeMaker>.
  17.  
  18. I<xsubpp> will compile XS code into C code by embedding the constructs
  19. necessary to let C functions manipulate Perl values and creates the glue
  20. necessary to let Perl access those functions.  The compiler uses typemaps to
  21. determine how to map C function parameters and variables to Perl values.
  22.  
  23. The compiler will search for typemap files called I<typemap>.  It will use
  24. the following search path to find default typemaps, with the rightmost
  25. typemap taking precedence.
  26.  
  27.     ../../../typemap:../../typemap:../typemap:typemap
  28.  
  29. =head1 OPTIONS
  30.  
  31. Note that the C<XSOPT> MakeMaker option may be used to add these options to
  32. any makefiles generated by MakeMaker.
  33.  
  34. =over 5
  35.  
  36. =item B<-C++>
  37.  
  38. Adds ``extern "C"'' to the C code.
  39.  
  40. =item B<-hiertype>
  41.  
  42. Retains '::' in type names so that C++ hierachical types can be mapped.
  43.  
  44. =item B<-except>
  45.  
  46. Adds exception handling stubs to the C code.
  47.  
  48. =item B<-typemap typemap>
  49.  
  50. Indicates that a user-supplied typemap should take precedence over the
  51. default typemaps.  This option may be used multiple times, with the last
  52. typemap having the highest precedence.
  53.  
  54. =item B<-v>
  55.  
  56. Prints the I<xsubpp> version number to standard output, then exits.
  57.  
  58. =item B<-prototypes>
  59.  
  60. By default I<xsubpp> will not automatically generate prototype code for
  61. all xsubs. This flag will enable prototypes.
  62.  
  63. =item B<-noversioncheck>
  64.  
  65. Disables the run time test that determines if the object file (derived
  66. from the C<.xs> file) and the C<.pm> files have the same version
  67. number.
  68.  
  69. =item B<-nolinenumbers>
  70.  
  71. Prevents the inclusion of `#line' directives in the output.
  72.  
  73. =item B<-nooptimize>
  74.  
  75. Disables certain optimizations.  The only optimization that is currently
  76. affected is the use of I<target>s by the output C code (see L<perlguts>).
  77. This may significantly slow down the generated code, but this is the way
  78. B<xsubpp> of 5.005 and earlier operated.
  79.  
  80. =item B<-noinout>
  81.  
  82. Disable recognition of C<IN>, C<OUT_LIST> and C<INOUT_LIST> declarations.
  83.  
  84. =item B<-noargtypes>
  85.  
  86. Disable recognition of ANSI-like descriptions of function signature.
  87.  
  88. =back
  89.  
  90. =head1 ENVIRONMENT
  91.  
  92. No environment variables are used.
  93.  
  94. =head1 AUTHOR
  95.  
  96. Larry Wall
  97.  
  98. =head1 MODIFICATION HISTORY
  99.  
  100. See the file F<changes.pod>.
  101.  
  102. =head1 SEE ALSO
  103.  
  104. perl(1), perlxs(1), perlxstut(1)
  105.  
  106. =cut
  107.  
  108. require 5.002;
  109. use Cwd;
  110. use vars qw($cplusplus $hiertype);
  111. use vars '%v';
  112.  
  113. use Config;
  114.  
  115. sub Q ;
  116.  
  117. # Global Constants
  118.  
  119. $XSUBPP_version = "1.9508";
  120.  
  121. my ($Is_VMS, $SymSet);
  122. if ($^O eq 'VMS') {
  123.     $Is_VMS = 1;
  124.     # Establish set of global symbols with max length 28, since xsubpp
  125.     # will later add the 'XS_' prefix.
  126.     require ExtUtils::XSSymSet;
  127.     $SymSet = new ExtUtils::XSSymSet 28;
  128. }
  129.  
  130. $FH = 'File0000' ;
  131.  
  132. $usage = "Usage: xsubpp [-v] [-C++] [-except] [-prototypes] [-noversioncheck] [-nolinenumbers] [-nooptimize] [-noinout] [-noargtypes] [-s pattern] [-typemap typemap]... file.xs\n";
  133.  
  134. $proto_re = "[" . quotemeta('\$%&*@;[]') . "]" ;
  135.  
  136. $except = "";
  137. $WantPrototypes = -1 ;
  138. $WantVersionChk = 1 ;
  139. $ProtoUsed = 0 ;
  140. $WantLineNumbers = 1 ;
  141. $WantOptimize = 1 ;
  142. $Overload = 0;
  143. $Fallback = 'PL_sv_undef';
  144.  
  145. my $process_inout = 1;
  146. my $process_argtypes = 1;
  147.  
  148. SWITCH: while (@ARGV and $ARGV[0] =~ /^-./) {
  149.     $flag = shift @ARGV;
  150.     $flag =~ s/^-// ;
  151.     $spat = quotemeta shift,    next SWITCH    if $flag eq 's';
  152.     $cplusplus = 1,    next SWITCH    if $flag eq 'C++';
  153.     $hiertype  = 1,    next SWITCH    if $flag eq 'hiertype';
  154.     $WantPrototypes = 0, next SWITCH    if $flag eq 'noprototypes';
  155.     $WantPrototypes = 1, next SWITCH    if $flag eq 'prototypes';
  156.     $WantVersionChk = 0, next SWITCH    if $flag eq 'noversioncheck';
  157.     $WantVersionChk = 1, next SWITCH    if $flag eq 'versioncheck';
  158.     # XXX left this in for compat
  159.     next SWITCH                         if $flag eq 'object_capi';
  160.     $except = " TRY",    next SWITCH    if $flag eq 'except';
  161.     push(@tm,shift),    next SWITCH    if $flag eq 'typemap';
  162.     $WantLineNumbers = 0, next SWITCH    if $flag eq 'nolinenumbers';
  163.     $WantLineNumbers = 1, next SWITCH    if $flag eq 'linenumbers';
  164.     $WantOptimize = 0, next SWITCH    if $flag eq 'nooptimize';
  165.     $WantOptimize = 1, next SWITCH    if $flag eq 'optimize';
  166.     $process_inout = 0, next SWITCH    if $flag eq 'noinout';
  167.     $process_inout = 1, next SWITCH    if $flag eq 'inout';
  168.     $process_argtypes = 0, next SWITCH    if $flag eq 'noargtypes';
  169.     $process_argtypes = 1, next SWITCH    if $flag eq 'argtypes';
  170.     (print "xsubpp version $XSUBPP_version\n"), exit
  171.     if $flag eq 'v';
  172.     die $usage;
  173. }
  174. if ($WantPrototypes == -1)
  175.   { $WantPrototypes = 0}
  176. else
  177.   { $ProtoUsed = 1 }
  178.  
  179.  
  180. @ARGV == 1 or die $usage;
  181. ($dir, $filename) = $ARGV[0] =~ m#(.*)/(.*)#
  182.     or ($dir, $filename) = $ARGV[0] =~ m#(.*)\\(.*)#
  183.     or ($dir, $filename) = $ARGV[0] =~ m#(.*[>\]])(.*)#
  184.     or ($dir, $filename) = ('.', $ARGV[0]);
  185. chdir($dir);
  186. $pwd = cwd();
  187.  
  188. ++ $IncludedFiles{$ARGV[0]} ;
  189.  
  190. my(@XSStack) = ({type => 'none'});    # Stack of conditionals and INCLUDEs
  191. my($XSS_work_idx, $cpp_next_tmp) = (0, "XSubPPtmpAAAA");
  192.  
  193.  
  194. sub TrimWhitespace
  195. {
  196.     $_[0] =~ s/^\s+|\s+$//go ;
  197. }
  198.  
  199. sub TidyType
  200. {
  201.     local ($_) = @_ ;
  202.  
  203.     # rationalise any '*' by joining them into bunches and removing whitespace
  204.     s#\s*(\*+)\s*#$1#g;
  205.     s#(\*+)# $1 #g ;
  206.  
  207.     # change multiple whitespace into a single space
  208.     s/\s+/ /g ;
  209.  
  210.     # trim leading & trailing whitespace
  211.     TrimWhitespace($_) ;
  212.  
  213.     $_ ;
  214. }
  215.  
  216. $typemap = shift @ARGV;
  217. foreach $typemap (@tm) {
  218.     die "Can't find $typemap in $pwd\n" unless -r $typemap;
  219. }
  220. unshift @tm, qw(../../../../lib/ExtUtils/typemap ../../../lib/ExtUtils/typemap
  221.                 ../../lib/ExtUtils/typemap ../../../typemap ../../typemap
  222.                 ../typemap typemap);
  223. foreach $typemap (@tm) {
  224.     next unless -f $typemap ;
  225.     # skip directories, binary files etc.
  226.     warn("Warning: ignoring non-text typemap file '$typemap'\n"), next
  227.     unless -T $typemap ;
  228.     open(TYPEMAP, $typemap)
  229.     or warn ("Warning: could not open typemap file '$typemap': $!\n"), next;
  230.     $mode = 'Typemap';
  231.     $junk = "" ;
  232.     $current = \$junk;
  233.     while (<TYPEMAP>) {
  234.     next if /^\s*#/;
  235.         my $line_no = $. + 1;
  236.     if (/^INPUT\s*$/)   { $mode = 'Input';   $current = \$junk;  next; }
  237.     if (/^OUTPUT\s*$/)  { $mode = 'Output';  $current = \$junk;  next; }
  238.     if (/^TYPEMAP\s*$/) { $mode = 'Typemap'; $current = \$junk;  next; }
  239.     if ($mode eq 'Typemap') {
  240.         chomp;
  241.         my $line = $_ ;
  242.             TrimWhitespace($_) ;
  243.         # skip blank lines and comment lines
  244.         next if /^$/ or /^#/ ;
  245.         my($type,$kind, $proto) = /^\s*(.*?\S)\s+(\S+)\s*($proto_re*)\s*$/ or
  246.         warn("Warning: File '$typemap' Line $. '$line' TYPEMAP entry needs 2 or 3 columns\n"), next;
  247.             $type = TidyType($type) ;
  248.         $type_kind{$type} = $kind ;
  249.             # prototype defaults to '$'
  250.             $proto = "\$" unless $proto ;
  251.             warn("Warning: File '$typemap' Line $. '$line' Invalid prototype '$proto'\n")
  252.                 unless ValidProtoString($proto) ;
  253.             $proto_letter{$type} = C_string($proto) ;
  254.     }
  255.     elsif (/^\s/) {
  256.         $$current .= $_;
  257.     }
  258.     elsif ($mode eq 'Input') {
  259.         s/\s+$//;
  260.         $input_expr{$_} = '';
  261.         $current = \$input_expr{$_};
  262.     }
  263.     else {
  264.         s/\s+$//;
  265.         $output_expr{$_} = '';
  266.         $current = \$output_expr{$_};
  267.     }
  268.     }
  269.     close(TYPEMAP);
  270. }
  271.  
  272. foreach $key (keys %input_expr) {
  273.     $input_expr{$key} =~ s/;*\s+\z//;
  274. }
  275.  
  276. $bal = qr[(?:(?>[^()]+)|\((??{ $bal })\))*];    # ()-balanced
  277. $cast = qr[(?:\(\s*SV\s*\*\s*\)\s*)?];        # Optional (SV*) cast
  278. $size = qr[,\s* (??{ $bal }) ]x;        # Third arg (to setpvn)
  279.  
  280. foreach $key (keys %output_expr) {
  281.     use re 'eval';
  282.  
  283.     my ($t, $with_size, $arg, $sarg) =
  284.       ($output_expr{$key} =~
  285.      m[^ \s+ sv_set ( [iunp] ) v (n)?     # Type, is_setpvn
  286.          \s* \( \s* $cast \$arg \s* ,
  287.          \s* ( (??{ $bal }) )        # Set from
  288.          ( (??{ $size }) )?            # Possible sizeof set-from
  289.          \) \s* ; \s* $
  290.       ]x);
  291.     $targetable{$key} = [$t, $with_size, $arg, $sarg] if $t;
  292. }
  293.  
  294. $END = "!End!\n\n";        # "impossible" keyword (multiple newline)
  295.  
  296. # Match an XS keyword
  297. $BLOCK_re= '\s*(' . join('|', qw(
  298.     REQUIRE BOOT CASE PREINIT INPUT INIT CODE PPCODE OUTPUT
  299.     CLEANUP ALIAS ATTRS PROTOTYPES PROTOTYPE VERSIONCHECK INCLUDE
  300.     SCOPE INTERFACE INTERFACE_MACRO C_ARGS POSTCALL OVERLOAD FALLBACK
  301.     )) . "|$END)\\s*:";
  302.  
  303. # Input:  ($_, @line) == unparsed input.
  304. # Output: ($_, @line) == (rest of line, following lines).
  305. # Return: the matched keyword if found, otherwise 0
  306. sub check_keyword {
  307.     $_ = shift(@line) while !/\S/ && @line;
  308.     s/^(\s*)($_[0])\s*:\s*(?:#.*)?/$1/s && $2;
  309. }
  310.  
  311. my ($C_group_rex, $C_arg);
  312. # Group in C (no support for comments or literals)
  313. $C_group_rex = qr/ [({\[]
  314.            (?: (?> [^()\[\]{}]+ ) | (??{ $C_group_rex }) )*
  315.            [)}\]] /x ;
  316. # Chunk in C without comma at toplevel (no comments):
  317. $C_arg = qr/ (?: (?> [^()\[\]{},"']+ )
  318.          |   (??{ $C_group_rex })
  319.          |   " (?: (?> [^\\"]+ )
  320.            |   \\.
  321.            )* "        # String literal
  322.          |   ' (?: (?> [^\\']+ ) | \\. )* ' # Char literal
  323.          )* /xs;
  324.  
  325. if ($WantLineNumbers) {
  326.     {
  327.     package xsubpp::counter;
  328.     sub TIEHANDLE {
  329.         my ($class, $cfile) = @_;
  330.         my $buf = "";
  331.         $SECTION_END_MARKER = "#line --- \"$cfile\"";
  332.         $line_no = 1;
  333.         bless \$buf;
  334.     }
  335.  
  336.     sub PRINT {
  337.         my $self = shift;
  338.         for (@_) {
  339.         $$self .= $_;
  340.         while ($$self =~ s/^([^\n]*\n)//) {
  341.             my $line = $1;
  342.             ++ $line_no;
  343.             $line =~ s|^\#line\s+---(?=\s)|#line $line_no|;
  344.             print STDOUT $line;
  345.         }
  346.         }
  347.     }
  348.  
  349.     sub PRINTF {
  350.         my $self = shift;
  351.         my $fmt = shift;
  352.         $self->PRINT(sprintf($fmt, @_));
  353.     }
  354.  
  355.     sub DESTROY {
  356.         # Not necessary if we're careful to end with a "\n"
  357.         my $self = shift;
  358.         print STDOUT $$self;
  359.     }
  360.     }
  361.  
  362.     my $cfile = $filename;
  363.     $cfile =~ s/\.xs$/.c/i or $cfile .= ".c";
  364.     tie(*PSEUDO_STDOUT, 'xsubpp::counter', $cfile);
  365.     select PSEUDO_STDOUT;
  366. }
  367.  
  368. sub print_section {
  369.     # the "do" is required for right semantics
  370.     do { $_ = shift(@line) } while !/\S/ && @line;
  371.  
  372.     print("#line ", $line_no[@line_no - @line -1], " \"$filename\"\n")
  373.     if $WantLineNumbers && !/^\s*#\s*line\b/ && !/^#if XSubPPtmp/;
  374.     for (;  defined($_) && !/^$BLOCK_re/o;  $_ = shift(@line)) {
  375.     print "$_\n";
  376.     }
  377.     print "$xsubpp::counter::SECTION_END_MARKER\n" if $WantLineNumbers;
  378. }
  379.  
  380. sub merge_section {
  381.     my $in = '';
  382.  
  383.     while (!/\S/ && @line) {
  384.         $_ = shift(@line);
  385.     }
  386.  
  387.     for (;  defined($_) && !/^$BLOCK_re/o;  $_ = shift(@line)) {
  388.     $in .= "$_\n";
  389.     }
  390.     chomp $in;
  391.     return $in;
  392. }
  393.  
  394. sub process_keyword($)
  395. {
  396.     my($pattern) = @_ ;
  397.     my $kwd ;
  398.  
  399.     &{"${kwd}_handler"}()
  400.         while $kwd = check_keyword($pattern) ;
  401. }
  402.  
  403. sub CASE_handler {
  404.     blurt ("Error: `CASE:' after unconditional `CASE:'")
  405.     if $condnum && $cond eq '';
  406.     $cond = $_;
  407.     TrimWhitespace($cond);
  408.     print "   ", ($condnum++ ? " else" : ""), ($cond ? " if ($cond)\n" : "\n");
  409.     $_ = '' ;
  410. }
  411.  
  412. sub INPUT_handler {
  413.     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
  414.     last if /^\s*NOT_IMPLEMENTED_YET/;
  415.     next unless /\S/;    # skip blank lines
  416.  
  417.     TrimWhitespace($_) ;
  418.     my $line = $_ ;
  419.  
  420.     # remove trailing semicolon if no initialisation
  421.     s/\s*;$//g unless /[=;+].*\S/ ;
  422.  
  423.     # Process the length(foo) declarations
  424.     if (s/^([^=]*)\blength\(\s*(\w+)\s*\)\s*$/$1 XSauto_length_of_$2=NO_INIT/x) {
  425.       print "\tSTRLEN\tSTRLEN_length_of_$2;\n";
  426.       $lengthof{$2} = $name;
  427.       # $islengthof{$name} = $1;
  428.       $deferred .= "\n\tXSauto_length_of_$2 = STRLEN_length_of_$2;";
  429.     }
  430.  
  431.     # check for optional initialisation code
  432.     my $var_init = '' ;
  433.     $var_init = $1 if s/\s*([=;+].*)$//s ;
  434.     $var_init =~ s/"/\\"/g;
  435.  
  436.     s/\s+/ /g;
  437.     my ($var_type, $var_addr, $var_name) = /^(.*?[^&\s])\s*(\&?)\s*\b(\w+)$/s
  438.         or blurt("Error: invalid argument declaration '$line'"), next;
  439.  
  440.     # Check for duplicate definitions
  441.     blurt ("Error: duplicate definition of argument '$var_name' ignored"), next
  442.         if $arg_list{$var_name}++
  443.           or defined $argtype_seen{$var_name} and not $processing_arg_with_types;
  444.  
  445.     $thisdone |= $var_name eq "THIS";
  446.     $retvaldone |= $var_name eq "RETVAL";
  447.     $var_types{$var_name} = $var_type;
  448.     # XXXX This check is a safeguard against the unfinished conversion of
  449.     # generate_init().  When generate_init() is fixed,
  450.     # one can use 2-args map_type() unconditionally.
  451.     if ($var_type =~ / \( \s* \* \s* \) /x) {
  452.       # Function pointers are not yet supported with &output_init!
  453.       print "\t" . &map_type($var_type, $var_name);
  454.       $name_printed = 1;
  455.     } else {
  456.       print "\t" . &map_type($var_type);
  457.       $name_printed = 0;
  458.     }
  459.     $var_num = $args_match{$var_name};
  460.  
  461.         $proto_arg[$var_num] = ProtoString($var_type)
  462.         if $var_num ;
  463.     $func_args =~ s/\b($var_name)\b/&$1/ if $var_addr;
  464.     if ($var_init =~ /^[=;]\s*NO_INIT\s*;?\s*$/
  465.         or $in_out{$var_name} and $in_out{$var_name} =~ /^OUT/
  466.         and $var_init !~ /\S/) {
  467.       if ($name_printed) {
  468.         print ";\n";
  469.       } else {
  470.         print "\t$var_name;\n";
  471.       }
  472.     } elsif ($var_init =~ /\S/) {
  473.         &output_init($var_type, $var_num, $var_name, $var_init, $name_printed);
  474.     } elsif ($var_num) {
  475.         # generate initialization code
  476.         &generate_init($var_type, $var_num, $var_name, $name_printed);
  477.     } else {
  478.         print ";\n";
  479.     }
  480.     }
  481. }
  482.  
  483. sub OUTPUT_handler {
  484.     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
  485.     next unless /\S/;
  486.     if (/^\s*SETMAGIC\s*:\s*(ENABLE|DISABLE)\s*/) {
  487.         $DoSetMagic = ($1 eq "ENABLE" ? 1 : 0);
  488.         next;
  489.     }
  490.     my ($outarg, $outcode) = /^\s*(\S+)\s*(.*?)\s*$/s ;
  491.     blurt ("Error: duplicate OUTPUT argument '$outarg' ignored"), next
  492.         if $outargs{$outarg} ++ ;
  493.     if (!$gotRETVAL and $outarg eq 'RETVAL') {
  494.         # deal with RETVAL last
  495.         $RETVAL_code = $outcode ;
  496.         $gotRETVAL = 1 ;
  497.         next ;
  498.     }
  499.     blurt ("Error: OUTPUT $outarg not an argument"), next
  500.         unless defined($args_match{$outarg});
  501.     blurt("Error: No input definition for OUTPUT argument '$outarg' - ignored"), next
  502.         unless defined $var_types{$outarg} ;
  503.     $var_num = $args_match{$outarg};
  504.     if ($outcode) {
  505.         print "\t$outcode\n";
  506.         print "\tSvSETMAGIC(ST(" , $var_num-1 , "));\n" if $DoSetMagic;
  507.     } else {
  508.         &generate_output($var_types{$outarg}, $var_num, $outarg, $DoSetMagic);
  509.     }
  510.     delete $in_out{$outarg}     # No need to auto-OUTPUT
  511.       if exists $in_out{$outarg} and $in_out{$outarg} =~ /OUT$/;
  512.     }
  513. }
  514.  
  515. sub C_ARGS_handler() {
  516.     my $in = merge_section();
  517.  
  518.     TrimWhitespace($in);
  519.     $func_args = $in;
  520. }
  521.  
  522. sub INTERFACE_MACRO_handler() {
  523.     my $in = merge_section();
  524.  
  525.     TrimWhitespace($in);
  526.     if ($in =~ /\s/) {        # two
  527.         ($interface_macro, $interface_macro_set) = split ' ', $in;
  528.     } else {
  529.         $interface_macro = $in;
  530.     $interface_macro_set = 'UNKNOWN_CVT'; # catch later
  531.     }
  532.     $interface = 1;        # local
  533.     $Interfaces = 1;        # global
  534. }
  535.  
  536. sub INTERFACE_handler() {
  537.     my $in = merge_section();
  538.  
  539.     TrimWhitespace($in);
  540.  
  541.     foreach (split /[\s,]+/, $in) {
  542.         $Interfaces{$_} = $_;
  543.     }
  544.     print Q<<"EOF";
  545. #    XSFUNCTION = $interface_macro($ret_type,cv,XSANY.any_dptr);
  546. EOF
  547.     $interface = 1;        # local
  548.     $Interfaces = 1;        # global
  549. }
  550.  
  551. sub CLEANUP_handler() { print_section() }
  552. sub PREINIT_handler() { print_section() }
  553. sub POSTCALL_handler() { print_section() }
  554. sub INIT_handler()    { print_section() }
  555.  
  556. sub GetAliases
  557. {
  558.     my ($line) = @_ ;
  559.     my ($orig) = $line ;
  560.     my ($alias) ;
  561.     my ($value) ;
  562.  
  563.     # Parse alias definitions
  564.     # format is
  565.     #    alias = value alias = value ...
  566.  
  567.     while ($line =~ s/^\s*([\w:]+)\s*=\s*(\w+)\s*//) {
  568.         $alias = $1 ;
  569.         $orig_alias = $alias ;
  570.         $value = $2 ;
  571.  
  572.         # check for optional package definition in the alias
  573.     $alias = $Packprefix . $alias if $alias !~ /::/ ;
  574.  
  575.         # check for duplicate alias name & duplicate value
  576.     Warn("Warning: Ignoring duplicate alias '$orig_alias'")
  577.         if defined $XsubAliases{$alias} ;
  578.  
  579.     Warn("Warning: Aliases '$orig_alias' and '$XsubAliasValues{$value}' have identical values")
  580.         if $XsubAliasValues{$value} ;
  581.  
  582.     $XsubAliases = 1;
  583.     $XsubAliases{$alias} = $value ;
  584.     $XsubAliasValues{$value} = $orig_alias ;
  585.     }
  586.  
  587.     blurt("Error: Cannot parse ALIAS definitions from '$orig'")
  588.         if $line ;
  589. }
  590.  
  591. sub ATTRS_handler ()
  592. {
  593.     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
  594.     next unless /\S/;
  595.     TrimWhitespace($_) ;
  596.         push @Attributes, $_;
  597.     }
  598. }
  599.  
  600. sub ALIAS_handler ()
  601. {
  602.     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
  603.     next unless /\S/;
  604.     TrimWhitespace($_) ;
  605.         GetAliases($_) if $_ ;
  606.     }
  607. }
  608.  
  609. sub OVERLOAD_handler()
  610. {
  611.     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
  612.     next unless /\S/;
  613.     TrimWhitespace($_) ;
  614.         while ( s/^\s*([\w:"\\)\+\-\*\/\%\<\>\.\&\|\^\!\~\{\}\=]+)\s*//) {
  615.         $Overload = 1 unless $Overload;
  616.         my $overload = "$Package\::(".$1 ;
  617.             push(@InitFileCode,
  618.              "        newXS(\"$overload\", XS_$Full_func_name, file$proto);\n");
  619.         }
  620.     }
  621.  
  622. }
  623.  
  624. sub FALLBACK_handler()
  625. {
  626.     # the rest of the current line should contain either TRUE, 
  627.     # FALSE or UNDEF
  628.  
  629.     TrimWhitespace($_) ;
  630.     my %map = (
  631.     TRUE => "PL_sv_yes", 1 => "PL_sv_yes",
  632.     FALSE => "PL_sv_no", 0 => "PL_sv_no",
  633.     UNDEF => "PL_sv_undef",
  634.     ) ;
  635.  
  636.     # check for valid FALLBACK value
  637.     death ("Error: FALLBACK: TRUE/FALSE/UNDEF") unless exists $map{uc $_} ;
  638.  
  639.     $Fallback = $map{uc $_} ;
  640. }
  641.  
  642. sub REQUIRE_handler ()
  643. {
  644.     # the rest of the current line should contain a version number
  645.     my ($Ver) = $_ ;
  646.  
  647.     TrimWhitespace($Ver) ;
  648.  
  649.     death ("Error: REQUIRE expects a version number")
  650.     unless $Ver ;
  651.  
  652.     # check that the version number is of the form n.n
  653.     death ("Error: REQUIRE: expected a number, got '$Ver'")
  654.     unless $Ver =~ /^\d+(\.\d*)?/ ;
  655.  
  656.     death ("Error: xsubpp $Ver (or better) required--this is only $XSUBPP_version.")
  657.         unless $XSUBPP_version >= $Ver ;
  658. }
  659.  
  660. sub VERSIONCHECK_handler ()
  661. {
  662.     # the rest of the current line should contain either ENABLE or
  663.     # DISABLE
  664.  
  665.     TrimWhitespace($_) ;
  666.  
  667.     # check for ENABLE/DISABLE
  668.     death ("Error: VERSIONCHECK: ENABLE/DISABLE")
  669.         unless /^(ENABLE|DISABLE)/i ;
  670.  
  671.     $WantVersionChk = 1 if $1 eq 'ENABLE' ;
  672.     $WantVersionChk = 0 if $1 eq 'DISABLE' ;
  673.  
  674. }
  675.  
  676. sub PROTOTYPE_handler ()
  677. {
  678.     my $specified ;
  679.  
  680.     death("Error: Only 1 PROTOTYPE definition allowed per xsub")
  681.         if $proto_in_this_xsub ++ ;
  682.  
  683.     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
  684.     next unless /\S/;
  685.     $specified = 1 ;
  686.     TrimWhitespace($_) ;
  687.         if ($_ eq 'DISABLE') {
  688.        $ProtoThisXSUB = 0
  689.         }
  690.         elsif ($_ eq 'ENABLE') {
  691.        $ProtoThisXSUB = 1
  692.         }
  693.         else {
  694.             # remove any whitespace
  695.             s/\s+//g ;
  696.             death("Error: Invalid prototype '$_'")
  697.                 unless ValidProtoString($_) ;
  698.             $ProtoThisXSUB = C_string($_) ;
  699.         }
  700.     }
  701.  
  702.     # If no prototype specified, then assume empty prototype ""
  703.     $ProtoThisXSUB = 2 unless $specified ;
  704.  
  705.     $ProtoUsed = 1 ;
  706.  
  707. }
  708.  
  709. sub SCOPE_handler ()
  710. {
  711.     death("Error: Only 1 SCOPE declaration allowed per xsub")
  712.         if $scope_in_this_xsub ++ ;
  713.  
  714.     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
  715.         next unless /\S/;
  716.         TrimWhitespace($_) ;
  717.         if ($_ =~ /^DISABLE/i) {
  718.            $ScopeThisXSUB = 0
  719.         }
  720.         elsif ($_ =~ /^ENABLE/i) {
  721.            $ScopeThisXSUB = 1
  722.         }
  723.     }
  724.  
  725. }
  726.  
  727. sub PROTOTYPES_handler ()
  728. {
  729.     # the rest of the current line should contain either ENABLE or
  730.     # DISABLE
  731.  
  732.     TrimWhitespace($_) ;
  733.  
  734.     # check for ENABLE/DISABLE
  735.     death ("Error: PROTOTYPES: ENABLE/DISABLE")
  736.         unless /^(ENABLE|DISABLE)/i ;
  737.  
  738.     $WantPrototypes = 1 if $1 eq 'ENABLE' ;
  739.     $WantPrototypes = 0 if $1 eq 'DISABLE' ;
  740.     $ProtoUsed = 1 ;
  741.  
  742. }
  743.  
  744. sub INCLUDE_handler ()
  745. {
  746.     # the rest of the current line should contain a valid filename
  747.  
  748.     TrimWhitespace($_) ;
  749.  
  750.     death("INCLUDE: filename missing")
  751.         unless $_ ;
  752.  
  753.     death("INCLUDE: output pipe is illegal")
  754.         if /^\s*\|/ ;
  755.  
  756.     # simple minded recursion detector
  757.     death("INCLUDE loop detected")
  758.         if $IncludedFiles{$_} ;
  759.  
  760.     ++ $IncludedFiles{$_} unless /\|\s*$/ ;
  761.  
  762.     # Save the current file context.
  763.     push(@XSStack, {
  764.     type        => 'file',
  765.         LastLine        => $lastline,
  766.         LastLineNo      => $lastline_no,
  767.         Line            => \@line,
  768.         LineNo          => \@line_no,
  769.         Filename        => $filename,
  770.         Handle          => $FH,
  771.         }) ;
  772.  
  773.     ++ $FH ;
  774.  
  775.     # open the new file
  776.     open ($FH, "$_") or death("Cannot open '$_': $!") ;
  777.  
  778.     print Q<<"EOF" ;
  779. #
  780. #/* INCLUDE:  Including '$_' from '$filename' */
  781. #
  782. EOF
  783.  
  784.     $filename = $_ ;
  785.  
  786.     # Prime the pump by reading the first
  787.     # non-blank line
  788.  
  789.     # skip leading blank lines
  790.     while (<$FH>) {
  791.         last unless /^\s*$/ ;
  792.     }
  793.  
  794.     $lastline = $_ ;
  795.     $lastline_no = $. ;
  796.  
  797. }
  798.  
  799. sub PopFile()
  800. {
  801.     return 0 unless $XSStack[-1]{type} eq 'file' ;
  802.  
  803.     my $data     = pop @XSStack ;
  804.     my $ThisFile = $filename ;
  805.     my $isPipe   = ($filename =~ /\|\s*$/) ;
  806.  
  807.     -- $IncludedFiles{$filename}
  808.         unless $isPipe ;
  809.  
  810.     close $FH ;
  811.  
  812.     $FH         = $data->{Handle} ;
  813.     $filename   = $data->{Filename} ;
  814.     $lastline   = $data->{LastLine} ;
  815.     $lastline_no = $data->{LastLineNo} ;
  816.     @line       = @{ $data->{Line} } ;
  817.     @line_no    = @{ $data->{LineNo} } ;
  818.  
  819.     if ($isPipe and $? ) {
  820.         -- $lastline_no ;
  821.         print STDERR "Error reading from pipe '$ThisFile': $! in $filename, line $lastline_no\n"  ;
  822.         exit 1 ;
  823.     }
  824.  
  825.     print Q<<"EOF" ;
  826. #
  827. #/* INCLUDE: Returning to '$filename' from '$ThisFile' */
  828. #
  829. EOF
  830.  
  831.     return 1 ;
  832. }
  833.  
  834. sub ValidProtoString ($)
  835. {
  836.     my($string) = @_ ;
  837.  
  838.     if ( $string =~ /^$proto_re+$/ ) {
  839.         return $string ;
  840.     }
  841.  
  842.     return 0 ;
  843. }
  844.  
  845. sub C_string ($)
  846. {
  847.     my($string) = @_ ;
  848.  
  849.     $string =~ s[\\][\\\\]g ;
  850.     $string ;
  851. }
  852.  
  853. sub ProtoString ($)
  854. {
  855.     my ($type) = @_ ;
  856.  
  857.     $proto_letter{$type} or "\$" ;
  858. }
  859.  
  860. sub check_cpp {
  861.     my @cpp = grep(/^\#\s*(?:if|e\w+)/, @line);
  862.     if (@cpp) {
  863.     my ($cpp, $cpplevel);
  864.     for $cpp (@cpp) {
  865.         if ($cpp =~ /^\#\s*if/) {
  866.         $cpplevel++;
  867.         } elsif (!$cpplevel) {
  868.         Warn("Warning: #else/elif/endif without #if in this function");
  869.         print STDERR "    (precede it with a blank line if the matching #if is outside the function)\n"
  870.             if $XSStack[-1]{type} eq 'if';
  871.         return;
  872.         } elsif ($cpp =~ /^\#\s*endif/) {
  873.         $cpplevel--;
  874.         }
  875.     }
  876.     Warn("Warning: #if without #endif in this function") if $cpplevel;
  877.     }
  878. }
  879.  
  880.  
  881. sub Q {
  882.     my($text) = @_;
  883.     $text =~ s/^#//gm;
  884.     $text =~ s/\[\[/{/g;
  885.     $text =~ s/\]\]/}/g;
  886.     $text;
  887. }
  888.  
  889. open($FH, $filename) or die "cannot open $filename: $!\n";
  890.  
  891. # Identify the version of xsubpp used
  892. print <<EOM ;
  893. /*
  894.  * This file was generated automatically by xsubpp version $XSUBPP_version from the
  895.  * contents of $filename. Do not edit this file, edit $filename instead.
  896.  *
  897.  *    ANY CHANGES MADE HERE WILL BE LOST!
  898.  *
  899.  */
  900.  
  901. EOM
  902.  
  903.  
  904. print("#line 1 \"$filename\"\n")
  905.     if $WantLineNumbers;
  906.  
  907. firstmodule:
  908. while (<$FH>) {
  909.     if (/^=/) {
  910.         my $podstartline = $.;
  911.         do {
  912.         if (/^=cut\s*$/) {
  913.         # We can't just write out a /* */ comment, as our embedded
  914.         # POD might itself be in a comment. We can't put a /**/
  915.         # comment inside #if 0, as the C standard says that the source
  916.         # file is decomposed into preprocessing characters in the stage
  917.         # before preprocessing commands are executed.
  918.         # I don't want to leave the text as barewords, because the spec
  919.         # isn't clear whether macros are expanded before or after
  920.         # preprocessing commands are executed, and someone pathological
  921.         # may just have defined one of the 3 words as a macro that does
  922.         # something strange. Multiline strings are illegal in C, so
  923.         # the "" we write must be a string literal. And they aren't
  924.         # concatenated until 2 steps later, so we are safe.
  925.         print("#if 0\n  \"Skipped embedded POD.\"\n#endif\n");
  926.         printf("#line %d \"$filename\"\n", $. + 1)
  927.           if $WantLineNumbers;
  928.         next firstmodule
  929.         }
  930.  
  931.     } while (<$FH>);
  932.     # At this point $. is at end of file so die won't state the start
  933.     # of the problem, and as we haven't yet read any lines &death won't
  934.     # show the correct line in the message either.
  935.     die ("Error: Unterminated pod in $filename, line $podstartline\n")
  936.       unless $lastline;
  937.     }
  938.     last if ($Module, $Package, $Prefix) =
  939.     /^MODULE\s*=\s*([\w:]+)(?:\s+PACKAGE\s*=\s*([\w:]+))?(?:\s+PREFIX\s*=\s*(\S+))?\s*$/;
  940.  
  941.     print $_;
  942. }
  943. &Exit unless defined $_;
  944.  
  945. print "$xsubpp::counter::SECTION_END_MARKER\n" if $WantLineNumbers;
  946.  
  947. $lastline    = $_;
  948. $lastline_no = $.;
  949.  
  950. # Read next xsub into @line from ($lastline, <$FH>).
  951. sub fetch_para {
  952.     # parse paragraph
  953.     death ("Error: Unterminated `#if/#ifdef/#ifndef'")
  954.     if !defined $lastline && $XSStack[-1]{type} eq 'if';
  955.     @line = ();
  956.     @line_no = () ;
  957.     return PopFile() if !defined $lastline;
  958.  
  959.     if ($lastline =~
  960.     /^MODULE\s*=\s*([\w:]+)(?:\s+PACKAGE\s*=\s*([\w:]+))?(?:\s+PREFIX\s*=\s*(\S+))?\s*$/) {
  961.     $Module = $1;
  962.     $Package = defined($2) ? $2 : '';    # keep -w happy
  963.     $Prefix  = defined($3) ? $3 : '';    # keep -w happy
  964.     $Prefix = quotemeta $Prefix ;
  965.     ($Module_cname = $Module) =~ s/\W/_/g;
  966.     ($Packid = $Package) =~ tr/:/_/;
  967.     $Packprefix = $Package;
  968.     $Packprefix .= "::" if $Packprefix ne "";
  969.     $lastline = "";
  970.     }
  971.  
  972.     for(;;) {
  973.     # Skip embedded PODs
  974.     while ($lastline =~ /^=/) {
  975.             while ($lastline = <$FH>) {
  976.             last if ($lastline =~ /^=cut\s*$/);
  977.         }
  978.         death ("Error: Unterminated pod") unless $lastline;
  979.         $lastline = <$FH>;
  980.         chomp $lastline;
  981.         $lastline =~ s/^\s+$//;
  982.     }
  983.     if ($lastline !~ /^\s*#/ ||
  984.         # CPP directives:
  985.         #    ANSI:    if ifdef ifndef elif else endif define undef
  986.         #        line error pragma
  987.         #    gcc:    warning include_next
  988.         #   obj-c:    import
  989.         #   others:    ident (gcc notes that some cpps have this one)
  990.         $lastline =~ /^#[ \t]*(?:(?:if|ifn?def|elif|else|endif|define|undef|pragma|error|warning|line\s+\d+|ident)\b|(?:include(?:_next)?|import)\s*["<].*[>"])/) {
  991.         last if $lastline =~ /^\S/ && @line && $line[-1] eq "";
  992.         push(@line, $lastline);
  993.         push(@line_no, $lastline_no) ;
  994.     }
  995.  
  996.     # Read next line and continuation lines
  997.     last unless defined($lastline = <$FH>);
  998.     $lastline_no = $.;
  999.     my $tmp_line;
  1000.     $lastline .= $tmp_line
  1001.         while ($lastline =~ /\\$/ && defined($tmp_line = <$FH>));
  1002.  
  1003.     chomp $lastline;
  1004.     $lastline =~ s/^\s+$//;
  1005.     }
  1006.     pop(@line), pop(@line_no) while @line && $line[-1] eq "";
  1007.     1;
  1008. }
  1009.  
  1010. PARAGRAPH:
  1011. while (fetch_para()) {
  1012.     # Print initial preprocessor statements and blank lines
  1013.     while (@line && $line[0] !~ /^[^\#]/) {
  1014.     my $line = shift(@line);
  1015.     print $line, "\n";
  1016.     next unless $line =~ /^\#\s*((if)(?:n?def)?|elsif|else|endif)\b/;
  1017.     my $statement = $+;
  1018.     if ($statement eq 'if') {
  1019.         $XSS_work_idx = @XSStack;
  1020.         push(@XSStack, {type => 'if'});
  1021.     } else {
  1022.         death ("Error: `$statement' with no matching `if'")
  1023.         if $XSStack[-1]{type} ne 'if';
  1024.         if ($XSStack[-1]{varname}) {
  1025.         push(@InitFileCode, "#endif\n");
  1026.         push(@BootCode,     "#endif");
  1027.         }
  1028.  
  1029.         my(@fns) = keys %{$XSStack[-1]{functions}};
  1030.         if ($statement ne 'endif') {
  1031.         # Hide the functions defined in other #if branches, and reset.
  1032.         @{$XSStack[-1]{other_functions}}{@fns} = (1) x @fns;
  1033.         @{$XSStack[-1]}{qw(varname functions)} = ('', {});
  1034.         } else {
  1035.         my($tmp) = pop(@XSStack);
  1036.         0 while (--$XSS_work_idx
  1037.              && $XSStack[$XSS_work_idx]{type} ne 'if');
  1038.         # Keep all new defined functions
  1039.         push(@fns, keys %{$tmp->{other_functions}});
  1040.         @{$XSStack[$XSS_work_idx]{functions}}{@fns} = (1) x @fns;
  1041.         }
  1042.     }
  1043.     }
  1044.  
  1045.     next PARAGRAPH unless @line;
  1046.  
  1047.     if ($XSS_work_idx && !$XSStack[$XSS_work_idx]{varname}) {
  1048.     # We are inside an #if, but have not yet #defined its xsubpp variable.
  1049.     print "#define $cpp_next_tmp 1\n\n";
  1050.     push(@InitFileCode, "#if $cpp_next_tmp\n");
  1051.     push(@BootCode,     "#if $cpp_next_tmp");
  1052.     $XSStack[$XSS_work_idx]{varname} = $cpp_next_tmp++;
  1053.     }
  1054.  
  1055.     death ("Code is not inside a function"
  1056.        ." (maybe last function was ended by a blank line "
  1057.        ." followed by a statement on column one?)")
  1058.     if $line[0] =~ /^\s/;
  1059.  
  1060.     # initialize info arrays
  1061.     undef(%args_match);
  1062.     undef(%var_types);
  1063.     undef(%defaults);
  1064.     undef($class);
  1065.     undef($static);
  1066.     undef($elipsis);
  1067.     undef($wantRETVAL) ;
  1068.     undef($RETVAL_no_return) ;
  1069.     undef(%arg_list) ;
  1070.     undef(@proto_arg) ;
  1071.     undef(@fake_INPUT_pre) ;    # For length(s) generated variables
  1072.     undef(@fake_INPUT) ;
  1073.     undef($processing_arg_with_types) ;
  1074.     undef(%argtype_seen) ;
  1075.     undef(@outlist) ;
  1076.     undef(%in_out) ;
  1077.     undef(%lengthof) ;
  1078.     # undef(%islengthof) ;
  1079.     undef($proto_in_this_xsub) ;
  1080.     undef($scope_in_this_xsub) ;
  1081.     undef($interface);
  1082.     undef($prepush_done);
  1083.     $interface_macro = 'XSINTERFACE_FUNC' ;
  1084.     $interface_macro_set = 'XSINTERFACE_FUNC_SET' ;
  1085.     $ProtoThisXSUB = $WantPrototypes ;
  1086.     $ScopeThisXSUB = 0;
  1087.     $xsreturn = 0;
  1088.  
  1089.     $_ = shift(@line);
  1090.     while ($kwd = check_keyword("REQUIRE|PROTOTYPES|FALLBACK|VERSIONCHECK|INCLUDE")) {
  1091.         &{"${kwd}_handler"}() ;
  1092.         next PARAGRAPH unless @line ;
  1093.         $_ = shift(@line);
  1094.     }
  1095.  
  1096.     if (check_keyword("BOOT")) {
  1097.     &check_cpp;
  1098.     push (@BootCode, "#line $line_no[@line_no - @line] \"$filename\"")
  1099.       if $WantLineNumbers && $line[0] !~ /^\s*#\s*line\b/;
  1100.         push (@BootCode, @line, "") ;
  1101.         next PARAGRAPH ;
  1102.     }
  1103.  
  1104.  
  1105.     # extract return type, function name and arguments
  1106.     ($ret_type) = TidyType($_);
  1107.     $RETVAL_no_return = 1 if $ret_type =~ s/^NO_OUTPUT\s+//;
  1108.  
  1109.     # Allow one-line ANSI-like declaration
  1110.     unshift @line, $2
  1111.       if $process_argtypes
  1112.     and $ret_type =~ s/^(.*?\w.*?)\s*\b(\w+\s*\(.*)/$1/s;
  1113.  
  1114.     # a function definition needs at least 2 lines
  1115.     blurt ("Error: Function definition too short '$ret_type'"), next PARAGRAPH
  1116.     unless @line ;
  1117.  
  1118.     $static = 1 if $ret_type =~ s/^static\s+//;
  1119.  
  1120.     $func_header = shift(@line);
  1121.     blurt ("Error: Cannot parse function definition from '$func_header'"), next PARAGRAPH
  1122.     unless $func_header =~ /^(?:([\w:]*)::)?(\w+)\s*\(\s*(.*?)\s*\)\s*(const)?\s*(;\s*)?$/s;
  1123.  
  1124.     ($class, $func_name, $orig_args) =  ($1, $2, $3) ;
  1125.     $class = "$4 $class" if $4;
  1126.     ($pname = $func_name) =~ s/^($Prefix)?/$Packprefix/;
  1127.     ($clean_func_name = $func_name) =~ s/^$Prefix//;
  1128.     $Full_func_name = "${Packid}_$clean_func_name";
  1129.     if ($Is_VMS) { $Full_func_name = $SymSet->addsym($Full_func_name); }
  1130.  
  1131.     # Check for duplicate function definition
  1132.     for $tmp (@XSStack) {
  1133.     next unless defined $tmp->{functions}{$Full_func_name};
  1134.     Warn("Warning: duplicate function definition '$clean_func_name' detected");
  1135.     last;
  1136.     }
  1137.     $XSStack[$XSS_work_idx]{functions}{$Full_func_name} ++ ;
  1138.     %XsubAliases = %XsubAliasValues = %Interfaces = @Attributes = ();
  1139.     $DoSetMagic = 1;
  1140.  
  1141.     $orig_args =~ s/\\\s*/ /g;        # process line continuations
  1142.  
  1143.     my %only_C_inlist;    # Not in the signature of Perl function
  1144.     if ($process_argtypes and $orig_args =~ /\S/) {
  1145.     my $args = "$orig_args ,";
  1146.     if ($args =~ /^( (??{ $C_arg }) , )* $ /x) {
  1147.         @args = ($args =~ /\G ( (??{ $C_arg }) ) , /xg);
  1148.         for ( @args ) {
  1149.         s/^\s+//;
  1150.         s/\s+$//;
  1151.         my ($arg, $default) = / ( [^=]* ) ( (?: = .* )? ) /x;
  1152.         my ($pre, $name) = ($arg =~ /(.*?) \s*
  1153.                          \b ( \w+ | length\( \s*\w+\s* \) )
  1154.                          \s* $ /x);
  1155.         next unless length $pre;
  1156.         my $out_type;
  1157.         my $inout_var;
  1158.         if ($process_inout and s/^(IN|IN_OUTLIST|OUTLIST|OUT|IN_OUT)\s+//) {
  1159.             my $type = $1;
  1160.             $out_type = $type if $type ne 'IN';
  1161.             $arg =~ s/^(IN|IN_OUTLIST|OUTLIST|OUT|IN_OUT)\s+//;
  1162.             $pre =~ s/^(IN|IN_OUTLIST|OUTLIST|OUT|IN_OUT)\s+//;
  1163.         }
  1164.         my $islength;
  1165.         if ($name =~ /^length\( \s* (\w+) \s* \)\z/x) {
  1166.           $name = "XSauto_length_of_$1";
  1167.           $islength = 1;
  1168.           die "Default value on length() argument: `$_'"
  1169.             if length $default;
  1170.         }
  1171.         if (length $pre or $islength) {    # Has a type
  1172.             if ($islength) {
  1173.               push @fake_INPUT_pre, $arg;
  1174.             } else {
  1175.               push @fake_INPUT, $arg;
  1176.             }
  1177.             # warn "pushing '$arg'\n";
  1178.             $argtype_seen{$name}++;
  1179.             $_ = "$name$default"; # Assigns to @args
  1180.         }
  1181.         $only_C_inlist{$_} = 1 if $out_type eq "OUTLIST" or $islength;
  1182.         push @outlist, $name if $out_type =~ /OUTLIST$/;
  1183.         $in_out{$name} = $out_type if $out_type;
  1184.         }
  1185.     } else {
  1186.         @args = split(/\s*,\s*/, $orig_args);
  1187.         Warn("Warning: cannot parse argument list '$orig_args', fallback to split");
  1188.     }
  1189.     } else {
  1190.     @args = split(/\s*,\s*/, $orig_args);
  1191.     for (@args) {
  1192.         if ($process_inout and s/^(IN|IN_OUTLIST|OUTLIST|IN_OUT|OUT)\s+//) {
  1193.         my $out_type = $1;
  1194.         next if $out_type eq 'IN';
  1195.         $only_C_inlist{$_} = 1 if $out_type eq "OUTLIST";
  1196.         push @outlist, $name if $out_type =~ /OUTLIST$/;
  1197.         $in_out{$_} = $out_type;
  1198.         }
  1199.     }
  1200.     }
  1201.     if (defined($class)) {
  1202.     my $arg0 = ((defined($static) or $func_name eq 'new')
  1203.             ? "CLASS" : "THIS");
  1204.     unshift(@args, $arg0);
  1205.     ($report_args = "$arg0, $report_args") =~ s/^\w+, $/$arg0/;
  1206.     }
  1207.     my $extra_args = 0;
  1208.     @args_num = ();
  1209.     $num_args = 0;
  1210.     my $report_args = '';
  1211.     foreach $i (0 .. $#args) {
  1212.         if ($args[$i] =~ s/\.\.\.//) {
  1213.             $elipsis = 1;
  1214.             if ($args[$i] eq '' && $i == $#args) {
  1215.                 $report_args .= ", ...";
  1216.             pop(@args);
  1217.             last;
  1218.             }
  1219.         }
  1220.         if ($only_C_inlist{$args[$i]}) {
  1221.         push @args_num, undef;
  1222.         } else {
  1223.         push @args_num, ++$num_args;
  1224.         $report_args .= ", $args[$i]";
  1225.         }
  1226.         if ($args[$i] =~ /^([^=]*[^\s=])\s*=\s*(.*)/s) {
  1227.             $extra_args++;
  1228.             $args[$i] = $1;
  1229.             $defaults{$args[$i]} = $2;
  1230.             $defaults{$args[$i]} =~ s/"/\\"/g;
  1231.         }
  1232.         $proto_arg[$i+1] = "\$" ;
  1233.     }
  1234.     $min_args = $num_args - $extra_args;
  1235.     $report_args =~ s/"/\\"/g;
  1236.     $report_args =~ s/^,\s+//;
  1237.     my @func_args = @args;
  1238.     shift @func_args if defined($class);
  1239.  
  1240.     for (@func_args) {
  1241.     s/^/&/ if $in_out{$_};
  1242.     }
  1243.     $func_args = join(", ", @func_args);
  1244.     @args_match{@args} = @args_num;
  1245.  
  1246.     $PPCODE = grep(/^\s*PPCODE\s*:/, @line);
  1247.     $CODE = grep(/^\s*CODE\s*:/, @line);
  1248.     # Detect CODE: blocks which use ST(n)= or XST_m*(n,v)
  1249.     #   to set explicit return values.
  1250.     $EXPLICIT_RETURN = ($CODE &&
  1251.         ("@line" =~ /(\bST\s*\([^;]*=) | (\bXST_m\w+\s*\()/x ));
  1252.     $ALIAS  = grep(/^\s*ALIAS\s*:/,  @line);
  1253.     $INTERFACE  = grep(/^\s*INTERFACE\s*:/,  @line);
  1254.  
  1255.     $xsreturn = 1 if $EXPLICIT_RETURN;
  1256.  
  1257.     # print function header
  1258.     print Q<<"EOF";
  1259. #XS(XS_${Full_func_name}); /* prototype to pass -Wmissing-prototypes */
  1260. #XS(XS_${Full_func_name})
  1261. #[[
  1262. #    dXSARGS;
  1263. EOF
  1264.     print Q<<"EOF" if $ALIAS ;
  1265. #    dXSI32;
  1266. EOF
  1267.     print Q<<"EOF" if $INTERFACE ;
  1268. #    dXSFUNCTION($ret_type);
  1269. EOF
  1270.     if ($elipsis) {
  1271.     $cond = ($min_args ? qq(items < $min_args) : 0);
  1272.     }
  1273.     elsif ($min_args == $num_args) {
  1274.     $cond = qq(items != $min_args);
  1275.     }
  1276.     else {
  1277.     $cond = qq(items < $min_args || items > $num_args);
  1278.     }
  1279.  
  1280.     print Q<<"EOF" if $except;
  1281. #    char errbuf[1024];
  1282. #    *errbuf = '\0';
  1283. EOF
  1284.  
  1285.     if ($ALIAS)
  1286.       { print Q<<"EOF" if $cond }
  1287. #    if ($cond)
  1288. #       Perl_croak(aTHX_ "Usage: %s($report_args)", GvNAME(CvGV(cv)));
  1289. EOF
  1290.     else
  1291.       { print Q<<"EOF" if $cond }
  1292. #    if ($cond)
  1293. #    Perl_croak(aTHX_ "Usage: $pname($report_args)");
  1294. EOF
  1295.  
  1296.     #gcc -Wall: if an xsub has no arguments and PPCODE is used
  1297.     #it is likely none of ST, XSRETURN or XSprePUSH macros are used
  1298.     #hence `ax' (setup by dXSARGS) is unused
  1299.     #XXX: could breakup the dXSARGS; into dSP;dMARK;dITEMS
  1300.     #but such a move could break third-party extensions
  1301.     print Q<<"EOF" if $PPCODE and $num_args == 0;
  1302. #   PERL_UNUSED_VAR(ax); /* -Wall */
  1303. EOF
  1304.  
  1305.     print Q<<"EOF" if $PPCODE;
  1306. #    SP -= items;
  1307. EOF
  1308.  
  1309.     # Now do a block of some sort.
  1310.  
  1311.     $condnum = 0;
  1312.     $cond = '';            # last CASE: condidional
  1313.     push(@line, "$END:");
  1314.     push(@line_no, $line_no[-1]);
  1315.     $_ = '';
  1316.     &check_cpp;
  1317.     while (@line) {
  1318.     &CASE_handler if check_keyword("CASE");
  1319.     print Q<<"EOF";
  1320. #   $except [[
  1321. EOF
  1322.  
  1323.     # do initialization of input variables
  1324.     $thisdone = 0;
  1325.     $retvaldone = 0;
  1326.     $deferred = "";
  1327.     %arg_list = () ;
  1328.         $gotRETVAL = 0;
  1329.  
  1330.     INPUT_handler() ;
  1331.     process_keyword("INPUT|PREINIT|INTERFACE_MACRO|C_ARGS|ALIAS|ATTRS|PROTOTYPE|SCOPE|OVERLOAD") ;
  1332.  
  1333.     print Q<<"EOF" if $ScopeThisXSUB;
  1334. #   ENTER;
  1335. #   [[
  1336. EOF
  1337.     
  1338.     if (!$thisdone && defined($class)) {
  1339.         if (defined($static) or $func_name eq 'new') {
  1340.         print "\tchar *";
  1341.         $var_types{"CLASS"} = "char *";
  1342.         &generate_init("char *", 1, "CLASS");
  1343.         }
  1344.         else {
  1345.         print "\t$class *";
  1346.         $var_types{"THIS"} = "$class *";
  1347.         &generate_init("$class *", 1, "THIS");
  1348.         }
  1349.     }
  1350.  
  1351.     # do code
  1352.     if (/^\s*NOT_IMPLEMENTED_YET/) {
  1353.         print "\n\tPerl_croak(aTHX_ \"$pname: not implemented yet\");\n";
  1354.         $_ = '' ;
  1355.     } else {
  1356.         if ($ret_type ne "void") {
  1357.             print "\t" . &map_type($ret_type, 'RETVAL') . ";\n"
  1358.                 if !$retvaldone;
  1359.             $args_match{"RETVAL"} = 0;
  1360.             $var_types{"RETVAL"} = $ret_type;
  1361.             print "\tdXSTARG;\n"
  1362.                 if $WantOptimize and $targetable{$type_kind{$ret_type}};
  1363.         }
  1364.  
  1365.         if (@fake_INPUT or @fake_INPUT_pre) {
  1366.             unshift @line, @fake_INPUT_pre, @fake_INPUT, $_;
  1367.             $_ = "";
  1368.             $processing_arg_with_types = 1;
  1369.             INPUT_handler() ;
  1370.         }
  1371.         print $deferred;
  1372.  
  1373.         process_keyword("INIT|ALIAS|ATTRS|PROTOTYPE|INTERFACE_MACRO|INTERFACE|C_ARGS|OVERLOAD") ;
  1374.  
  1375.         if (check_keyword("PPCODE")) {
  1376.             print_section();
  1377.             death ("PPCODE must be last thing") if @line;
  1378.             print "\tLEAVE;\n" if $ScopeThisXSUB;
  1379.             print "\tPUTBACK;\n\treturn;\n";
  1380.         } elsif (check_keyword("CODE")) {
  1381.             print_section() ;
  1382.         } elsif (defined($class) and $func_name eq "DESTROY") {
  1383.             print "\n\t";
  1384.             print "delete THIS;\n";
  1385.         } else {
  1386.             print "\n\t";
  1387.             if ($ret_type ne "void") {
  1388.                 print "RETVAL = ";
  1389.                 $wantRETVAL = 1;
  1390.             }
  1391.             if (defined($static)) {
  1392.                 if ($func_name eq 'new') {
  1393.                 $func_name = "$class";
  1394.                 } else {
  1395.                 print "${class}::";
  1396.                 }
  1397.             } elsif (defined($class)) {
  1398.                 if ($func_name eq 'new') {
  1399.                 $func_name .= " $class";
  1400.                 } else {
  1401.                 print "THIS->";
  1402.                 }
  1403.             }
  1404.             $func_name =~ s/^($spat)//
  1405.                 if defined($spat);
  1406.             $func_name = 'XSFUNCTION' if $interface;
  1407.             print "$func_name($func_args);\n";
  1408.         }
  1409.     }
  1410.  
  1411.     # do output variables
  1412.     $gotRETVAL = 0;        # 1 if RETVAL seen in OUTPUT section;
  1413.     undef $RETVAL_code ;    # code to set RETVAL (from OUTPUT section);
  1414.     # $wantRETVAL set if 'RETVAL =' autogenerated
  1415.     ($wantRETVAL, $ret_type) = (0, 'void') if $RETVAL_no_return;
  1416.     undef %outargs ;
  1417.     process_keyword("POSTCALL|OUTPUT|ALIAS|ATTRS|PROTOTYPE|OVERLOAD");
  1418.  
  1419.     &generate_output($var_types{$_}, $args_match{$_}, $_, $DoSetMagic)
  1420.       for grep $in_out{$_} =~ /OUT$/, keys %in_out;
  1421.  
  1422.     # all OUTPUT done, so now push the return value on the stack
  1423.     if ($gotRETVAL && $RETVAL_code) {
  1424.         print "\t$RETVAL_code\n";
  1425.     } elsif ($gotRETVAL || $wantRETVAL) {
  1426.         my $t = $WantOptimize && $targetable{$type_kind{$ret_type}};
  1427.         my $var = 'RETVAL';
  1428.         my $type = $ret_type;
  1429.  
  1430.         # 0: type, 1: with_size, 2: how, 3: how_size
  1431.         if ($t and not $t->[1] and $t->[0] eq 'p') {
  1432.         # PUSHp corresponds to setpvn.  Treate setpv directly
  1433.         my $what = eval qq("$t->[2]");
  1434.         warn $@ if $@;
  1435.  
  1436.         print "\tsv_setpv(TARG, $what); XSprePUSH; PUSHTARG;\n";
  1437.         $prepush_done = 1;
  1438.         }
  1439.         elsif ($t) {
  1440.         my $what = eval qq("$t->[2]");
  1441.         warn $@ if $@;
  1442.  
  1443.         my $size = $t->[3];
  1444.         $size = '' unless defined $size;
  1445.         $size = eval qq("$size");
  1446.         warn $@ if $@;
  1447.         print "\tXSprePUSH; PUSH$t->[0]($what$size);\n";
  1448.         $prepush_done = 1;
  1449.         }
  1450.         else {
  1451.         # RETVAL almost never needs SvSETMAGIC()
  1452.         &generate_output($ret_type, 0, 'RETVAL', 0);
  1453.         }
  1454.     }
  1455.  
  1456.     $xsreturn = 1 if $ret_type ne "void";
  1457.     my $num = $xsreturn;
  1458.     my $c = @outlist;
  1459.     # (PP)CODE set different values of SP; reset to PPCODE's with 0 output
  1460.     print "\tXSprePUSH;"    if $c and not $prepush_done;
  1461.     # Take into account stuff already put on stack
  1462.     print "\t++SP;"         if $c and not $prepush_done and $xsreturn;
  1463.     # Now SP corresponds to ST($xsreturn), so one can combine PUSH and ST()
  1464.     print "\tEXTEND(SP,$c);\n" if $c;
  1465.     $xsreturn += $c;
  1466.     generate_output($var_types{$_}, $num++, $_, 0, 1) for @outlist;
  1467.  
  1468.     # do cleanup
  1469.     process_keyword("CLEANUP|ALIAS|ATTRS|PROTOTYPE|OVERLOAD") ;
  1470.  
  1471.     print Q<<"EOF" if $ScopeThisXSUB;
  1472. #   ]]
  1473. EOF
  1474.     print Q<<"EOF" if $ScopeThisXSUB and not $PPCODE;
  1475. #   LEAVE;
  1476. EOF
  1477.  
  1478.     # print function trailer
  1479.     print Q<<EOF;
  1480. #    ]]
  1481. EOF
  1482.     print Q<<EOF if $except;
  1483. #    BEGHANDLERS
  1484. #    CATCHALL
  1485. #    sprintf(errbuf, "%s: %s\\tpropagated", Xname, Xreason);
  1486. #    ENDHANDLERS
  1487. EOF
  1488.     if (check_keyword("CASE")) {
  1489.         blurt ("Error: No `CASE:' at top of function")
  1490.         unless $condnum;
  1491.         $_ = "CASE: $_";    # Restore CASE: label
  1492.         next;
  1493.     }
  1494.     last if $_ eq "$END:";
  1495.     death(/^$BLOCK_re/o ? "Misplaced `$1:'" : "Junk at end of function");
  1496.     }
  1497.  
  1498.     print Q<<EOF if $except;
  1499. #    if (errbuf[0])
  1500. #    Perl_croak(aTHX_ errbuf);
  1501. EOF
  1502.  
  1503.     if ($xsreturn) {
  1504.         print Q<<EOF unless $PPCODE;
  1505. #    XSRETURN($xsreturn);
  1506. EOF
  1507.     } else {
  1508.         print Q<<EOF unless $PPCODE;
  1509. #    XSRETURN_EMPTY;
  1510. EOF
  1511.     }
  1512.  
  1513.     print Q<<EOF;
  1514. #]]
  1515. #
  1516. EOF
  1517.  
  1518.     my $newXS = "newXS" ;
  1519.     my $proto = "" ;
  1520.  
  1521.     # Build the prototype string for the xsub
  1522.     if ($ProtoThisXSUB) {
  1523.     $newXS = "newXSproto";
  1524.  
  1525.     if ($ProtoThisXSUB eq 2) {
  1526.         # User has specified empty prototype
  1527.         $proto = ', ""' ;
  1528.     }
  1529.         elsif ($ProtoThisXSUB ne 1) {
  1530.             # User has specified a prototype
  1531.             $proto = ', "' . $ProtoThisXSUB . '"';
  1532.         }
  1533.         else {
  1534.         my $s = ';';
  1535.             if ($min_args < $num_args)  {
  1536.                 $s = '';
  1537.         $proto_arg[$min_args] .= ";" ;
  1538.         }
  1539.             push @proto_arg, "$s\@"
  1540.                 if $elipsis ;
  1541.  
  1542.             $proto = ', "' . join ("", @proto_arg) . '"';
  1543.         }
  1544.     }
  1545.  
  1546.     if (%XsubAliases) {
  1547.     $XsubAliases{$pname} = 0
  1548.         unless defined $XsubAliases{$pname} ;
  1549.     while ( ($name, $value) = each %XsubAliases) {
  1550.         push(@InitFileCode, Q<<"EOF");
  1551. #        cv = newXS(\"$name\", XS_$Full_func_name, file);
  1552. #        XSANY.any_i32 = $value ;
  1553. EOF
  1554.     push(@InitFileCode, Q<<"EOF") if $proto;
  1555. #        sv_setpv((SV*)cv$proto) ;
  1556. EOF
  1557.         }
  1558.     }
  1559.     elsif (@Attributes) {
  1560.         push(@InitFileCode, Q<<"EOF");
  1561. #        cv = newXS(\"$pname\", XS_$Full_func_name, file);
  1562. #        apply_attrs_string("$Package", cv, "@Attributes", 0);
  1563. EOF
  1564.     }
  1565.     elsif ($interface) {
  1566.     while ( ($name, $value) = each %Interfaces) {
  1567.         $name = "$Package\::$name" unless $name =~ /::/;
  1568.         push(@InitFileCode, Q<<"EOF");
  1569. #        cv = newXS(\"$name\", XS_$Full_func_name, file);
  1570. #        $interface_macro_set(cv,$value) ;
  1571. EOF
  1572.         push(@InitFileCode, Q<<"EOF") if $proto;
  1573. #        sv_setpv((SV*)cv$proto) ;
  1574. EOF
  1575.         }
  1576.     }
  1577.     else {
  1578.     push(@InitFileCode,
  1579.          "        ${newXS}(\"$pname\", XS_$Full_func_name, file$proto);\n");
  1580.     }
  1581. }
  1582.  
  1583. if ($Overload) # make it findable with fetchmethod
  1584. {
  1585.     
  1586.     print Q<<"EOF"; 
  1587. #XS(XS_${Packid}_nil); /* prototype to pass -Wmissing-prototypes */
  1588. #XS(XS_${Packid}_nil)
  1589. #{
  1590. #   XSRETURN_EMPTY;
  1591. #}
  1592. #
  1593. EOF
  1594.     unshift(@InitFileCode, <<"MAKE_FETCHMETHOD_WORK");
  1595.     /* Making a sub named "${Package}::()" allows the package */
  1596.     /* to be findable via fetchmethod(), and causes */
  1597.     /* overload::Overloaded("${Package}") to return true. */
  1598.     newXS("${Package}::()", XS_${Packid}_nil, file$proto);
  1599. MAKE_FETCHMETHOD_WORK
  1600. }
  1601.  
  1602. # print initialization routine
  1603.  
  1604. print Q<<"EOF";
  1605. ##ifdef __cplusplus
  1606. #extern "C"
  1607. ##endif
  1608. EOF
  1609.  
  1610. print Q<<"EOF";
  1611. #XS(boot_$Module_cname); /* prototype to pass -Wmissing-prototypes */
  1612. #XS(boot_$Module_cname)
  1613. EOF
  1614.  
  1615. print Q<<"EOF";
  1616. #[[
  1617. #    dXSARGS;
  1618. EOF
  1619.  
  1620. #-Wall: if there is no $Full_func_name there are no xsubs in this .xs
  1621. #so `file' is unused
  1622. print Q<<"EOF" if $Full_func_name;
  1623. #    char* file = __FILE__;
  1624. EOF
  1625.  
  1626. print Q "#\n";
  1627.  
  1628. print Q<<"EOF" if $WantVersionChk ;
  1629. #    XS_VERSION_BOOTCHECK ;
  1630. #
  1631. EOF
  1632.  
  1633. print Q<<"EOF" if defined $XsubAliases or defined $Interfaces ;
  1634. #    {
  1635. #        CV * cv ;
  1636. #
  1637. EOF
  1638.  
  1639. print Q<<"EOF" if ($Overload);
  1640. #    /* register the overloading (type 'A') magic */
  1641. #    PL_amagic_generation++;
  1642. #    /* The magic for overload gets a GV* via gv_fetchmeth as */
  1643. #    /* mentioned above, and looks in the SV* slot of it for */
  1644. #    /* the "fallback" status. */
  1645. #    sv_setsv(
  1646. #        get_sv( "${Package}::()", TRUE ),
  1647. #        $Fallback
  1648. #    );
  1649. EOF
  1650.  
  1651. print @InitFileCode;
  1652.  
  1653. print Q<<"EOF" if defined $XsubAliases or defined $Interfaces ;
  1654. #    }
  1655. EOF
  1656.  
  1657. if (@BootCode)
  1658. {
  1659.     print "\n    /* Initialisation Section */\n\n" ;
  1660.     @line = @BootCode;
  1661.     print_section();
  1662.     print "\n    /* End of Initialisation Section */\n\n" ;
  1663. }
  1664.  
  1665. print Q<<"EOF";;
  1666. #    XSRETURN_YES;
  1667. #]]
  1668. #
  1669. EOF
  1670.  
  1671. warn("Please specify prototyping behavior for $filename (see perlxs manual)\n")
  1672.     unless $ProtoUsed ;
  1673. &Exit;
  1674.  
  1675. sub output_init {
  1676.     local($type, $num, $var, $init, $name_printed) = @_;
  1677.     local($arg) = "ST(" . ($num - 1) . ")";
  1678.  
  1679.     if(  $init =~ /^=/  ) {
  1680.         if ($name_printed) {
  1681.       eval qq/print " $init\\n"/;
  1682.     } else {
  1683.       eval qq/print "\\t$var $init\\n"/;
  1684.     }
  1685.     warn $@   if  $@;
  1686.     } else {
  1687.     if(  $init =~ s/^\+//  &&  $num  ) {
  1688.         &generate_init($type, $num, $var, $name_printed);
  1689.     } elsif ($name_printed) {
  1690.         print ";\n";
  1691.         $init =~ s/^;//;
  1692.     } else {
  1693.         eval qq/print "\\t$var;\\n"/;
  1694.         warn $@   if  $@;
  1695.         $init =~ s/^;//;
  1696.     }
  1697.     $deferred .= eval qq/"\\n\\t$init\\n"/;
  1698.     warn $@   if  $@;
  1699.     }
  1700. }
  1701.  
  1702. sub Warn
  1703. {
  1704.     # work out the line number
  1705.     my $line_no = $line_no[@line_no - @line -1] ;
  1706.  
  1707.     print STDERR "@_ in $filename, line $line_no\n" ;
  1708. }
  1709.  
  1710. sub blurt
  1711. {
  1712.     Warn @_ ;
  1713.     $errors ++
  1714. }
  1715.  
  1716. sub death
  1717. {
  1718.     Warn @_ ;
  1719.     exit 1 ;
  1720. }
  1721.  
  1722. sub generate_init {
  1723.     local($type, $num, $var) = @_;
  1724.     local($arg) = "ST(" . ($num - 1) . ")";
  1725.     local($argoff) = $num - 1;
  1726.     local($ntype);
  1727.     local($tk);
  1728.  
  1729.     $type = TidyType($type) ;
  1730.     blurt("Error: '$type' not in typemap"), return
  1731.     unless defined($type_kind{$type});
  1732.  
  1733.     ($ntype = $type) =~ s/\s*\*/Ptr/g;
  1734.     ($subtype = $ntype) =~ s/(?:Array)?(?:Ptr)?$//;
  1735.     $tk = $type_kind{$type};
  1736.     $tk =~ s/OBJ$/REF/ if $func_name =~ /DESTROY$/;
  1737.     if ($tk eq 'T_PV' and exists $lengthof{$var}) {
  1738.       print "\t$var" unless $name_printed;
  1739.       print " = ($type)SvPV($arg, STRLEN_length_of_$var);\n";
  1740.       die "default value not supported with length(NAME) supplied"
  1741.     if defined $defaults{$var};
  1742.       return;
  1743.     }
  1744.     $type =~ tr/:/_/ unless $hiertype;
  1745.     blurt("Error: No INPUT definition for type '$type', typekind '$type_kind{$type}' found"), return
  1746.         unless defined $input_expr{$tk} ;
  1747.     $expr = $input_expr{$tk};
  1748.     if ($expr =~ /DO_ARRAY_ELEM/) {
  1749.         blurt("Error: '$subtype' not in typemap"), return
  1750.         unless defined($type_kind{$subtype});
  1751.         blurt("Error: No INPUT definition for type '$subtype', typekind '$type_kind{$subtype}' found"), return
  1752.             unless defined $input_expr{$type_kind{$subtype}} ;
  1753.     $subexpr = $input_expr{$type_kind{$subtype}};
  1754.         $subexpr =~ s/\$type/\$subtype/g;
  1755.     $subexpr =~ s/ntype/subtype/g;
  1756.     $subexpr =~ s/\$arg/ST(ix_$var)/g;
  1757.     $subexpr =~ s/\n\t/\n\t\t/g;
  1758.     $subexpr =~ s/is not of (.*\")/[arg %d] is not of $1, ix_$var + 1/g;
  1759.     $subexpr =~ s/\$var/${var}[ix_$var - $argoff]/;
  1760.     $expr =~ s/DO_ARRAY_ELEM/$subexpr/;
  1761.     }
  1762.     if ($expr =~ m#/\*.*scope.*\*/#i) { # "scope" in C comments
  1763.         $ScopeThisXSUB = 1;
  1764.     }
  1765.     if (defined($defaults{$var})) {
  1766.         $expr =~ s/(\t+)/$1    /g;
  1767.         $expr =~ s/        /\t/g;
  1768.         if ($name_printed) {
  1769.           print ";\n";
  1770.         } else {
  1771.           eval qq/print "\\t$var;\\n"/;
  1772.           warn $@   if  $@;
  1773.         }
  1774.         if ($defaults{$var} eq 'NO_INIT') {
  1775.         $deferred .= eval qq/"\\n\\tif (items >= $num) {\\n$expr;\\n\\t}\\n"/;
  1776.         } else {
  1777.         $deferred .= eval qq/"\\n\\tif (items < $num)\\n\\t    $var = $defaults{$var};\\n\\telse {\\n$expr;\\n\\t}\\n"/;
  1778.         }
  1779.         warn $@   if  $@;
  1780.     } elsif ($ScopeThisXSUB or $expr !~ /^\s*\$var =/) {
  1781.         if ($name_printed) {
  1782.           print ";\n";
  1783.         } else {
  1784.           eval qq/print "\\t$var;\\n"/;
  1785.           warn $@   if  $@;
  1786.         }
  1787.         $deferred .= eval qq/"\\n$expr;\\n"/;
  1788.         warn $@   if  $@;
  1789.     } else {
  1790.         die "panic: do not know how to handle this branch for function pointers"
  1791.           if $name_printed;
  1792.         eval qq/print "$expr;\\n"/;
  1793.         warn $@   if  $@;
  1794.     }
  1795. }
  1796.  
  1797. sub generate_output {
  1798.     local($type, $num, $var, $do_setmagic, $do_push) = @_;
  1799.     local($arg) = "ST(" . ($num - ($num != 0)) . ")";
  1800.     local($argoff) = $num - 1;
  1801.     local($ntype);
  1802.  
  1803.     $type = TidyType($type) ;
  1804.     if ($type =~ /^array\(([^,]*),(.*)\)/) {
  1805.             print "\t$arg = sv_newmortal();\n";
  1806.         print "\tsv_setpvn($arg, (char *)$var, $2 * sizeof($1));\n";
  1807.         print "\tSvSETMAGIC($arg);\n" if $do_setmagic;
  1808.     } else {
  1809.         blurt("Error: '$type' not in typemap"), return
  1810.         unless defined($type_kind{$type});
  1811.             blurt("Error: No OUTPUT definition for type '$type', typekind '$type_kind{$type}' found"), return
  1812.                 unless defined $output_expr{$type_kind{$type}} ;
  1813.         ($ntype = $type) =~ s/\s*\*/Ptr/g;
  1814.         $ntype =~ s/\(\)//g;
  1815.         ($subtype = $ntype) =~ s/(?:Array)?(?:Ptr)?$//;
  1816.         $expr = $output_expr{$type_kind{$type}};
  1817.         if ($expr =~ /DO_ARRAY_ELEM/) {
  1818.             blurt("Error: '$subtype' not in typemap"), return
  1819.             unless defined($type_kind{$subtype});
  1820.                 blurt("Error: No OUTPUT definition for type '$subtype', typekind '$type_kind{$subtype}' found"), return
  1821.                     unless defined $output_expr{$type_kind{$subtype}} ;
  1822.         $subexpr = $output_expr{$type_kind{$subtype}};
  1823.         $subexpr =~ s/ntype/subtype/g;
  1824.         $subexpr =~ s/\$arg/ST(ix_$var)/g;
  1825.         $subexpr =~ s/\$var/${var}[ix_$var]/g;
  1826.         $subexpr =~ s/\n\t/\n\t\t/g;
  1827.         $expr =~ s/DO_ARRAY_ELEM\n/$subexpr/;
  1828.         eval "print qq\a$expr\a";
  1829.         warn $@   if  $@;
  1830.         print "\t\tSvSETMAGIC(ST(ix_$var));\n" if $do_setmagic;
  1831.         }
  1832.         elsif ($var eq 'RETVAL') {
  1833.         if ($expr =~ /^\t\$arg = new/) {
  1834.             # We expect that $arg has refcnt 1, so we need to
  1835.             # mortalize it.
  1836.             eval "print qq\a$expr\a";
  1837.             warn $@   if  $@;
  1838.             print "\tsv_2mortal(ST($num));\n";
  1839.             print "\tSvSETMAGIC(ST($num));\n" if $do_setmagic;
  1840.         }
  1841.         elsif ($expr =~ /^\s*\$arg\s*=/) {
  1842.             # We expect that $arg has refcnt >=1, so we need
  1843.             # to mortalize it!
  1844.             eval "print qq\a$expr\a";
  1845.             warn $@   if  $@;
  1846.             print "\tsv_2mortal(ST(0));\n";
  1847.             print "\tSvSETMAGIC(ST(0));\n" if $do_setmagic;
  1848.         }
  1849.         else {
  1850.             # Just hope that the entry would safely write it
  1851.             # over an already mortalized value. By
  1852.             # coincidence, something like $arg = &sv_undef
  1853.             # works too.
  1854.             print "\tST(0) = sv_newmortal();\n";
  1855.             eval "print qq\a$expr\a";
  1856.             warn $@   if  $@;
  1857.             # new mortals don't have set magic
  1858.         }
  1859.         }
  1860.         elsif ($do_push) {
  1861.             print "\tPUSHs(sv_newmortal());\n";
  1862.         $arg = "ST($num)";
  1863.         eval "print qq\a$expr\a";
  1864.         warn $@   if  $@;
  1865.         print "\tSvSETMAGIC($arg);\n" if $do_setmagic;
  1866.         }
  1867.         elsif ($arg =~ /^ST\(\d+\)$/) {
  1868.         eval "print qq\a$expr\a";
  1869.         warn $@   if  $@;
  1870.         print "\tSvSETMAGIC($arg);\n" if $do_setmagic;
  1871.         }
  1872.     }
  1873. }
  1874.  
  1875. sub map_type {
  1876.     my($type, $varname) = @_;
  1877.  
  1878.     # C++ has :: in types too so skip this
  1879.     $type =~ tr/:/_/ unless $hiertype;
  1880.     $type =~ s/^array\(([^,]*),(.*)\).*/$1 */s;
  1881.     if ($varname) {
  1882.       if ($varname && $type =~ / \( \s* \* (?= \s* \) ) /xg) {
  1883.     (substr $type, pos $type, 0) = " $varname ";
  1884.       } else {
  1885.     $type .= "\t$varname";
  1886.       }
  1887.     }
  1888.     $type;
  1889. }
  1890.  
  1891.  
  1892. sub Exit {
  1893. # If this is VMS, the exit status has meaning to the shell, so we
  1894. # use a predictable value (SS$_Normal or SS$_Abort) rather than an
  1895. # arbitrary number.
  1896. #    exit ($Is_VMS ? ($errors ? 44 : 1) : $errors) ;
  1897.     exit ($errors ? 1 : 0);
  1898. }
  1899.